home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / debuglib / Makefile < prev    next >
Makefile  |  1994-09-19  |  341b  |  22 lines

  1. ODIR=.
  2. LIBFILES= debuglib.o
  3. CC=gcc
  4. CFLAGS=-g -I../include 
  5.  
  6. clean:
  7.     -rm debuglib.o test1 test1.o core *\~ checkout
  8.  
  9. arlib: $(LIBFILES)
  10.  
  11. check: dotest1
  12.  
  13. test1: test1.o debuglib.o
  14.     $(CC) $(CFLAGS) -o test1 debuglib.o test1.o -L.. -leutl -ldb -lmalloc_d
  15.  
  16. dotest1: test1 FORCE
  17.     @echo "Running Test 1"
  18.     @./runtest1
  19.     @echo "Test 1 passed"
  20.  
  21. FORCE:
  22.